const github.com/klauspost/compress/flate.bTableBits

11 uses

	github.com/klauspost/compress/flate (current package)
		fast_encoder.go#L45: 	bTableBits   = 17                                               // Bits used in the big tables
		fast_encoder.go#L46: 	bTableSize   = 1 << bTableBits                                  // Size of the table
		level2.go#L79: 			nextHash := hashLen(cv, bTableBits, hashBytes)
		level2.go#L88: 			nextHash = hashLen(now, bTableBits, hashBytes)
		level2.go#L160: 					e.table[hashLen(cv, bTableBits, hashBytes)] = tableEntry{offset: s + e.cur}
		level2.go#L168: 				nextHash := hashLen(x, bTableBits, hashBytes)
		level2.go#L172: 				nextHash = hashLen(x, bTableBits, hashBytes)
		level2.go#L176: 				nextHash = hashLen(x, bTableBits, hashBytes)
		level2.go#L188: 			prevHash := hashLen(x, bTableBits, hashBytes)
		level2.go#L189: 			prevHash2 := hashLen(x>>8, bTableBits, hashBytes)
		level2.go#L192: 			currHash := hashLen(x>>16, bTableBits, hashBytes)